Skip to main content
Version: 1.0.2

Request For Payment Cancellation

The RequestForPaymentCancellation API enables to cancel the payment request initiated by the originator.

Method: POST

{{URL}}/rtp/rpc/TransactionService/RequestForPaymentCancellation

Headers

NameValue
Content-Typeapplication/json
Credential"Basic c3VwcG9ydCsxQG5ldHN5cy1pbmMuY29tOjM5ZDYxOGJkNTVmN5NWQxY2RlNDE5"
Signature"{{signature}}"

Example

Payload Parameters
ParameterDescription

referenceNumber

Mandatory

String

Reference number of the outbound Request for Payment

Example – "CBWRFP20230808220000124"

caseId

Mandatory

String

Case ID of payment cancellation request

Example – "CASE_RFPC_CBWRFP20230808220000124"

processor

Mandatory

String

Payment channel through which the transaction happens

Example – "FEDNOW"

caseHandler

Mandatory

Object

email

Mandatory

String

Email of the case handler who checks this request

Example – "ramesh@test.com"

name

Mandatory

String

Name of the case handler who checks this request

Example – "Ramesh P"

phoneNo

Mandatory

String

Contact phone number of the case handler who checks this request

Example – "+1-5632897456"

prefMethod

Mandatory

String

Preferable mode of contacting the case handler

Example – "PHON"

reason

Mandatory

Object

additionalInfo

Mandatory

String

Reason for cancelling the payment

Example – "Invalid creditor"

code

Mandatory

String

Reason code of the given reason

Example – "AC03"


curl --location '{{URL}}/rtp/rpc/TransactionService/RequestForPaymentCancellation' \
--header 'Content-Type: application/json' \
--data-raw '{"referenceNumber":"CBWRFP20230808220000124","caseId":"CASE_RFPC_CBWRFP20230808220000124","processor":"FEDNOW","caseHandler":{"email":"ramesh@test.com","name":"Ramesh P","phoneNo":"+1-5632897456","prefMethod":"PHON"},"reason":{"additionalInfo":"Invalid creditor","code":"AC03"}}'

Request Body (Applicable only for FedNow)


{
"referenceNumber": "CBWRFP20230808220000124",
"caseId": "CASE_RFPC_CBWRFP20230808220000124",
"processor": "FEDNOW",
"caseHandler": {
"email": "ramesh@test.com",
"name": "Ramesh P",
"phoneNo": "+1-5632897456",
"prefMethod": "PHON"
},
"reason": {
"additionalInfo": "Invalid creditor",
"code": "AC03"
}
}

Response: 200

Response Parameters
ParameterDescription

message

String

Notification message for the transaction

Example – "success"

rawMessage

String

Raw response message related to the transaction encoded in Base64

Example – "Base64 Value of Received Response"

response

String

Response received for the given request

Example – "JSON Representation of Received Response"

status

String

Status of the response

Example – "SUCCESS"

Response Body (Applicable only for FedNow)


{
"message": "success",
"rawMessage": "Base64 Value of Received Response",
"response": "JSON Representation of Received Response",
"status": "SUCCESS"
}